home *** CD-ROM | disk | FTP | other *** search
/ The Sunday Times: Parent Power / The Sunday Times - Parent Power.iso / pc / engine / engine.swf / scripts / DefineSprite_246 / frame_1 / DoAction.as
Encoding:
Text File  |  2005-11-03  |  354 b   |  16 lines

  1. openURLTimeout = function()
  2. {
  3.    clearInterval(nmWaitID);
  4.    _parent.webPageGo();
  5.    nmWaitID = setInterval(this,"closeTimeout",2000);
  6.    delete openURLTimeout;
  7. };
  8. closeTimeout = function()
  9. {
  10.    clearInterval(nmWaitID);
  11.    _parent.gotoAndStop("init");
  12.    delete closeTimeout;
  13. };
  14. nmWaitID = setInterval(this,"openURLTimeout",2000);
  15. stop();
  16.